About Predrag Gruevski

An independent software engineer applying compiler technology to the data space. I most often write about Rust, compilers, performance optimizations, and data querying technology.

The RSS's url is : https://predr.ag/atom.xml

Please copy to your reader or subscribe it with :

Preview of RSS feed of Predrag Gruevski

The Wi-Fi only works when it's raining

1970-01-01 08:00:00

SemVer in Rust: Tooling, Breakage, and Edge Cases — FOSDEM 2024

1970-01-01 08:00:00

Last month, I gave a talk titled "SemVer in Rust: Breakage, Tooling, and Edge Cases" at the FOSDEM 2024 conference.

The talk is a practical look at what semantic versioning (SemVer) buys us, why SemVer goes wrong in practice, and how the cargo-semver-checks linter can help prevent the damage caused by SemVer breakage.

TL;DR: SemVer is impossibly hard for humans, but automated tools can cover our greatest weaknesses.

Four challenges cargo-semver-checks has yet to tackle

1970-01-01 08:00:00

My last post covered the key cargo-semver-checks achievements from 2023. Here are the biggest challenges that lie ahead!

Many of the remaining challenges in cargo-semver-checks are obvious: we all want more lints, fewer false-positives, etc. etc. Let's set those aside.

Instead, let's talk about four non-obvious challenges we have yet to tackle:

Highlights of 2023 for cargo-semver-checks

1970-01-01 08:00:00

2023 was a big year for cargo-semver-checks! We saw ecosystem-wide adoption in projects of all shapes and sizes: the tokio and PyO3 ecosystems, company-backed OSS projects from companies like Amazon and Google, and even in cargo itself. Here's a look back at the highlights of 2023!

Checking semver in the presence of doc(hidden) items

1970-01-01 08:00:00

cargo-semver-checks v0.25 squashes nearly all bugs related to doc(hidden) items — its most common source of false-positives. What does doc(hidden) mean in Rust, and why was handling it correctly so hard?

Semver violations are common, better tooling is the answer

1970-01-01 08:00:00

This post is coauthored by Tomasz Nowak and Predrag Gruevski. It describes work the two of us did together with Bartosz Smolarczyk, Michał Staniewski, and Mieszko Grodzicki.

Anecdotally, cargo-semver-checks is a helpful tool for preventing the semver violations that every so often cause ecosystem-wide pain. This is why it earned a spot in the CI pipelines of key Rust crates like tokio, and also why the cargo team hopes to integrate it into cargo itself.

While anedotal evidence is nice, we wanted to get concrete data across a large sample of real-world Rust code.

Breaking semver in Rust by adding a private type, or by adding an import

1970-01-01 08:00:00

A few days ago, I started polls on Mastodon and Twitter whether adding a new private type, or an import, can ever be a major breaking change. The consensus was that this should be impossible.

I agree with that. It should be impossible.

I've discovered a way to cause a previously-public type or function to disappear from a crate's public API by making innocuous-seeming changes like adding a private type or adding an import, etc. It is not a hypothetical problem, either — I've found at least one real-world Rust project that has been affected by it.

A definitive guide to sealed traits in Rust

1970-01-01 08:00:00

For the longest time, I thought that "sealed trait" in Rust was a singular concept implementable in one specific way. To prevent downstream crates from implementing your traits, you make the traits sealed — done, end of story. I was wrong! It turns out there are multiple ways to seal traits, forming a pleasant spectrum of options:

Mediocrity can be a sign of excellence, and other stories

1970-01-01 08:00:00

Happy April 1st! This post is part of April Cools Club: an effort to publish genuine posts on topics our usual audience would find unexpected. The tech content will be back soon!

Over the many years I spent heavily involved in intern and full-time recruiting at $PREVIOUS_JOB, multiple people have commented something to the effect of: "How come Predrag always gets the best people?"

This post is a series of vignettes showing three of the less-obvious ideas that gave us an edge,

Re-exporting an enum with a type alias is breaking, but not major

1970-01-01 08:00:00

We've already explored some of the dark corners of Rust semantic versioning on this blog:

Speeding up Rust semver-checking by over 2000x

1970-01-01 08:00:00

This post describes work in progress: how cargo-semver-checks will benefit from the upcoming query optimization API in the Trustfall query engine. Read on to learn how a modern linter works under the hood, and how ideas from the world of databases can improve its performance.

Moving and re-exporting a Rust type can be a major breaking change

1970-01-01 08:00:00

Some Rust breaking changes don't require a major version

1970-01-01 08:00:00

Turning a Rust struct into an enum is not always a major breaking change

1970-01-01 08:00:00

cargo-semver-checks today and in 2023

1970-01-01 08:00:00

Falsehoods programmers believe about undefined behavior

1970-01-01 08:00:00

My HYTRADBOI'22 Jam

1970-01-01 08:00:00

I had a lot of fun spending nights-and-weekends time participating in the HYTRADBOI Jam, a global hack week aimed at building "exciting and weird" data-centric solutions to familiar problems. The name HYTRADBOI might sound familiar: the jam is associated with the same conference where I gave my "How to Query (Almost) Everything" talk talk in April this year.

I jammed on two projects: one solo and one with a friend. The projects ultimately were very successful and mostly-successful, respectively.

Debugging Safari: If at first you succeed, don't try again

1970-01-01 08:00:00

The saying usually goes: "If at first you don't succeed, try, try again." But in the Safari web browser under the right conditions, trying again after succeeding once can get you in trouble. This is my recent debugging adventure.

Toward fearless cargo update

1970-01-01 08:00:00

I recently built cargo-semver-checks, a linter that ensures crates adhere to semantic versioning. This is why and how I built it.

Fearless development is a key theme throughout Rust. "If it compiles, it works", fearless concurrency, etc.

But there's one aspect of Rust (and nearly all other languages) that isn't entirely fearless yet: cargo update, upgrading the versions of the project's dependencies.

Compiler Adventures, part 3: Value Numbering

1970-01-01 08:00:00

To ace exams, get better at the easy questions

1970-01-01 08:00:00

Compiler Adventures, part 2: Constant Propagation

1970-01-01 08:00:00

Compiler Adventures, part 1: No-op Instructions

1970-01-01 08:00:00

How Paxos and Two-Phase Commit Differ

1970-01-01 08:00:00